Don't install gtkbuilderprivate.h
authorMatthias Clasen <mclasen@redhat.com>
Fri, 15 Jun 2007 20:43:49 +0000 (20:43 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 15 Jun 2007 20:43:49 +0000 (20:43 +0000)
2007-06-15  Matthias Clasen  <mclasen@redhat.com>

        * gtk/Makefile.am: Don't install gtkbuilderprivate.h

        * gtk/gtk.h: Include gtkbuilder.h

        * NEWS: Updates

svn path=/trunk/; revision=18148

ChangeLog
NEWS
gtk/Makefile.am
gtk/gtk.h

index 6b5519ced186226fe9e88bcf1d6acc2835ebbfe0..42bb3a44487f18ef4aa445e86924b2a3dbc5eaf5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-06-15  Matthias Clasen  <mclasen@redhat.com>
+       
+       * gtk/Makefile.am: Don't install gtkbuilderprivate.h
+
+       * gtk/gtk.h: Include gtkbuilder.h
+
+       * NEWS: Updates
+
 2007-06-15  Johan Dahlin  <jdahlin@async.com.br>
 
        * gtk/gtkbuilder.c (gtk_builder_add_from_file): 
diff --git a/NEWS b/NEWS
index a2cdee6d9cb3b7178b50d0798295f7dacdbf1f7c..e887ef974e9cd74a07348308e19c1b26cc57674e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,17 @@
 Overview of Changes from GTK+ 2.11.2 to 2.11.3
 ==============================================
 
+* GtkBuilder: GTK+ supports constructing user interfaces 
+  from XML descriptions now, similar to libglade.
+
+* The new tooltip code now has convenience api to set
+  text tooltips: gtk_widget_set_tooltip_text(),
+  gtk_widget_set_tooltip_markup()
 * GtkTextView, GtkEntry:
- - gtk_widget_modify_cursor() is a new function in the gtk_widget_modify
-   family to override the style-provided cursor color
+ - gtk_widget_modify_cursor() is a new function in the 
+   gtk_widget_modify family to override the style-provided 
+   cursor colors
  - Use a block cursor in overwrite mode
 
 * GtkFileChooser:
@@ -12,6 +20,7 @@ Overview of Changes from GTK+ 2.11.2 to 2.11.3
 
 * GtkMenu:
  - GtkMenuItem gained a submenu property
+ - GtkMenuShell obtained a move-selected signal 
 
 * OS X port:
  - Many improvements
@@ -49,6 +58,9 @@ Overview of Changes from GTK+ 2.11.2 to 2.11.3
  158008 Stock button for Dont Save, Discard Changes, Do Not Save
  334576 GtkCellRendererProgress ignores xalign attribute
  344836 Add orientation property to CellRendererProgress
+ 172535 Add support for UI builders in gtk+
+ 446833 gtk_menu_shell_move_selected should be a vcall
+ 447586 gtknotebook.c: decreasing unknown size pointer
 
 * Updated translations
  Spanish (es)
index 92a78b8537c71def67dd68caa56d744b43e8a646..0143cea482548816822eacd1a59ded723dfd0857 100644 (file)
@@ -145,7 +145,6 @@ gtk_public_h_sources =          \
        gtkbox.h                \
        gtkbuilder.h            \
        gtkbuildable.h          \
-       gtkbuilderprivate.h     \
        gtkbutton.h             \
        gtkcalendar.h           \
        gtkcelleditable.h       \
@@ -347,6 +346,7 @@ gtk_private_h_sources =             \
        gtksearchenginesimple.h \
        gtkdndcursors.h         \
        gtkentryprivate.h       \
+       gtkbuilderprivate.h     \
        gtkfilechooserdefault.h \
        gtkfilechooserembed.h   \
        gtkfilechooserentry.h   \
index 70f04b79846b02b0a712eb96501942fee43e2b56..bdfaef9b076affae2c13835017e2f821a0f19737 100644 (file)
--- a/gtk/gtk.h
+++ b/gtk/gtk.h
@@ -46,6 +46,7 @@
 #include <gtk/gtkbindings.h>
 #include <gtk/gtkbox.h>
 #include <gtk/gtkbuildable.h>
+#include <gtk/gtkbuilder.h>
 #include <gtk/gtkbutton.h>
 #include <gtk/gtkcalendar.h>
 #include <gtk/gtkcelllayout.h>